home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsdevice.h < prev    next >
C/C++ Source or Header  |  1997-02-28  |  3KB  |  87 lines

  1. /* Copyright (C) 1994, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsdevice.h */
  20. /* Device and page control API */
  21.  
  22. #ifndef gsdevice_INCLUDED
  23. #  define gsdevice_INCLUDED
  24.  
  25. #ifndef gx_device_DEFINED
  26. #  define gx_device_DEFINED
  27. typedef struct gx_device_s gx_device;
  28. #endif
  29.  
  30. #ifndef gx_device_memory_DEFINED
  31. #  define gx_device_memory_DEFINED
  32. typedef struct gx_device_memory_s gx_device_memory;
  33. #endif
  34.  
  35. #ifndef gs_matrix_DEFINED
  36. #  define gs_matrix_DEFINED
  37. typedef struct gs_matrix_s gs_matrix;
  38. #endif
  39.  
  40. #ifndef gs_param_list_DEFINED
  41. #  define gs_param_list_DEFINED
  42. typedef struct gs_param_list_s gs_param_list;
  43. #endif
  44.  
  45. #ifndef gs_state_DEFINED
  46. #  define gs_state_DEFINED
  47. typedef struct gs_state_s gs_state;
  48. #endif
  49.  
  50. int gs_flushpage(P1(gs_state *));
  51. int gs_copypage(P1(gs_state *));
  52. int gs_output_page(P3(gs_state *, int, int));
  53. int gs_copyscanlines(P6(gx_device *, int, byte *, uint, int *, uint *));
  54. const gx_device *gs_getdevice(P1(int));
  55. int gs_copydevice(P3(gx_device **, const gx_device *, gs_memory_t *));
  56. #define gs_makeimagedevice(pdev, pmat, w, h, colors, colors_size, mem)\
  57.   gs_makewordimagedevice(pdev, pmat, w, h, colors, colors_size, false, true, mem)
  58. int gs_makewordimagedevice(P9(gx_device **pnew_dev, const gs_matrix *pmat,
  59.                   uint width, uint height,
  60.                   const byte *colors, int num_colors,
  61.                   bool word_oriented, bool page_device,
  62.                   gs_memory_t *mem));
  63. #define gs_initialize_imagedevice(mdev, pmat, w, h, colors, colors_size, mem)\
  64.   gs_initialize_wordimagedevice(mdev, pmat, w, h, colors, color_size, false, true, mem)
  65. int gs_initialize_wordimagedevice(P9(gx_device_memory *new_dev,
  66.                      const gs_matrix *pmat,
  67.                      uint width, uint height,
  68.                      const byte *colors, int colors_size,
  69.                      bool word_oriented, bool page_device,
  70.                      gs_memory_t *mem));
  71. void gs_nulldevice(P1(gs_state *));
  72. int gs_setdevice(P2(gs_state *, gx_device *));
  73. int gs_setdevice_no_erase(P2(gs_state *, gx_device *)); /* returns 1 */
  74.                         /* if erasepage required */
  75. gx_device *gs_currentdevice(P1(const gs_state *));
  76. /* gzstate.h redefines the following: */
  77. #ifndef gs_currentdevice_inline
  78. #  define gs_currentdevice_inline(pgs) gs_currentdevice(pgs)
  79. #endif
  80. const char *gs_devicename(P1(const gx_device *));
  81. void gs_deviceinitialmatrix(P2(gx_device *, gs_matrix *));
  82. int gs_getdeviceparams(P2(gx_device *, gs_param_list *));
  83. int gs_putdeviceparams(P2(gx_device *, gs_param_list *));
  84. int gs_closedevice(P1(gx_device *));
  85.  
  86. #endif                    /* gsdevice_INCLUDED */
  87.